home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
debug
/
flush.lha
/
Flush
/
Flush.doc
< prev
next >
Wrap
Text File
|
1995-11-01
|
1KB
|
83 lines
NAME
Flush
Selectively remove unused libraries, devices and fonts from memory.
FUNCTION
Flush is just an enhanced version of C='s 'flushlibs' program.
INSTALLATION
Simply copy Flush to C: - that's all.
TEMPLATE
Flush NAMES/M,LIBS=LIBRARIES/S,DEVS=DEVICES/S,FONTS/S,ALL/S,QUIET/S
NAMES/M: The list of libraries, devices and fonts to flush.
Standard Amiga wildcards are supported.
See examples.
LIBRARIES/S: Restrict the flush to unused libraries only.
May be abbreviated to LIBS.
DEVICES/S: Restrict the flush to unused devices only.
Me be abbreviated to DEVS.
FONTS/S: Restrict the flush to fonts only.
ALL/S: Flush libraries, devices and fonts. This is the
default if none of the LIBRARIES, DEVICES or
FONTS options is given.
QUIET/S: Silent operation.
EXAMPLES
- Flush all unused libraries, devices and fonts:
Flush
or
Flush ALL
- Flush unused fonts only:
Flush FONTS
or
Flush #?.font
(unless a library or device happens to be named something.font)
- Flush unused devices and fonts only:
Flush DEVS FONTS
or
Flush #?.device #?.font
or
Flush ~(#?.library)
- Flush a particular device:
Flush my.device
or
Flush my#? DEVS
- Flush all libraries but the SAS/C compiler, all devices but
serial.device, and all fonts but helvetica.font:
Flush ~(sc#?.library) ~(serial.device) ~(helv#?.font)
- etc.